/* Color Tokens */
.primary {
	color: #FF0009; /* $primary */
}

.secondary {
	color: #D7D7D7; /* $secondary */
}

.tertiary {
	color: #FFF212; /* $tertiary */
}

.light {
	color: #FEFEFE; /* $light */
}

.dark {
	color: #201E1E; /* $dark */
}
/* End Color Tokens */

/* Coupon Styles */
.coupons-list {
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 2em;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.coupons-list li {
	margin: 1em 1%;
	opacity: 1;
	transition: opacity .7s ease 0s;
	-webkit-flex: 1 1 48%;
	-ms-flex: 1 1 48%;
	flex: 1 1 48%;
}

.coupons-list li:hover {
	opacity: .7;
}

.coupons-list  li a {
	opacity: 1;
	width: 100%;
	color: #201E1E; /* $dark */
	text-align: center;
}

.coupon-title {
	padding: 0 !important;
	text-align: center;
}

.coupon-title h1 {
	color: #FF0009; /* $primary */
}

.coupon:not(.icon) {
	padding: 7% 5% 5%;
	opacity: 1;
	transition: opacity .5s ease 0s;
	position: relative;
	display: block;
	text-align: center;
	background-color: #FEFEFE;
	border: dashed .2em #DBDBDB;
}

.coupons-list .coupon {
	padding: 1.5em 4% 1.75em;
}

.coupon .title {
	font-size: 1.333em;
	line-height: 1.15;
	position: relative;
	padding-bottom: 1em;
	margin-bottom: 1em;
	color: #201E1E; /* $dark */
}

.coupon .title:after {
	content: ' ';
	display: block;
	width: 100px;
	height: 1px;
	background-color: #D0D0D0; /* darken($light,14%) */
	position: absolute;
	bottom: 0;
	left: calc(50% - 50px);
}

.coupon .title strong {
	display: block;
	font-size: 2em;
	color: #FF0009; /* $primary */
}

.coupon small {
	font-size: .875em;
	line-height: 1.4;
	display: block;
}

.coupon .btn {
	margin-top: 1.75em;
	min-width: 50%;
}

.coupon .scissors {
	position: absolute;
	font-size: 2.5em;
	color: #C2C2C2; /* darken($light,20%) */
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.coupon-print .coupon {
	background-image: none;
	border: dashed 3px #201E1E;
	position: relative;
	font-size: .75em;
	color: #201E1E; /* $dark */
}

.coupon-print .coupon > img {
	display: block;
	margin: auto auto 1em;
}

.coupon-print .coupon .title {
	color: #201E1E; /* $dark */
}
/* End Coupon Styles */

/* 550px Responsive */
@media screen and (max-width:550px) {
	.coupons-list {
		display: block;
	}
}
/* End 550px Responsive */

/* 450px Responsive */
@media screen and (max-width:450px) {
	.coupon .title strong {
		font-size: 1.6667em;
	}
}
/* End 450px Responsive */
